german@german-T400:~/Prog/WS/PyCharm/MSc/ars$ cd ../../../sphinx/
german@german-T400:~/Prog/WS/sphinx$ python -c 'import sphinx'
german@german-T400:~/Prog/WS/sphinx$ sphinx-quickstart
	Welcome to the Sphinx 1.1.3 quickstart utility.

	Please enter values for the following settings (just press Enter to
	accept a default value, if one is given in brackets).

	Enter the root path for documentation.
	> Root path for the documentation [.]: 

	You have two options for placing the build directory for Sphinx output.
	Either, you use a directory "_build" within the root path, or you separate
	"source" and "build" directories within the root path.
	> Separate source and build directories (y/N) [n]: 

	Inside the root directory, two more directories will be created; "_templates"
	for custom HTML templates and "_static" for custom stylesheets and other static
	files. You can enter another prefix (such as ".") to replace the underscore.
	> Name prefix for templates and static dir [_]: 

	The project name will occur in several places in the built documentation.
	> Project name: sampledoc
	> Author name(s): Yo

	Sphinx has the notion of a "version" and a "release" for the
	software. Each version can have multiple releases. For example, for
	Python the version is something like 2.5 or 3.0, while the release is
	something like 2.5.1 or 3.0a1.  If you don't need this dual structure,
	just set both to the same value.
	> Project version: 1.1
	> Project release [1.1]: 1.1.25

	The file name suffix for source files. Commonly, this is either ".txt"
	or ".rst".  Only files with this suffix are considered documents.
	> Source file suffix [.rst]: 

	One document is special in that it is considered the top node of the
	"contents tree", that is, it is the root of the hierarchical structure
	of the documents. Normally, this is "index", but if your "index"
	document is a custom template, you can also set this to another filename.
	> Name of your master document (without suffix) [index]: 

	Sphinx can also add configuration for epub output:
	> Do you want to use the epub builder (y/N) [n]: 

	Please indicate if you want to use one of the following Sphinx extensions:
	> autodoc: automatically insert docstrings from modules (y/N) [n]: y
	> doctest: automatically test code snippets in doctest blocks (y/N) [n]: 
	> intersphinx: link between Sphinx documentation of different projects (y/N) [n]: 
	> todo: write "todo" entries that can be shown or hidden on build (y/N) [n]: 
	> coverage: checks for documentation coverage (y/N) [n]: 
	> pngmath: include math, rendered as PNG images (y/N) [n]: 
	> mathjax: include math, rendered in the browser by MathJax (y/N) [n]: 
	> ifconfig: conditional inclusion of content based on config values (y/N) [n]: 
	> viewcode: include links to the source code of documented Python objects (y/N) [n]: 

	A Makefile and a Windows command file can be generated for you so that you
	only have to run e.g. `make html' instead of invoking sphinx-build
	directly.
	> Create Makefile? (Y/n) [y]: 
	> Create Windows command file? (Y/n) [y]: n

	Creating file ./conf.py.
	Creating file ./index.rst.
	Creating file ./Makefile.

	Finished: An initial directory structure has been created.

	You should now populate your master file ./index.rst and create other documentation
	source files. Use the Makefile to build the docs, like so:
	   make builder
	where "builder" is one of the supported builders, e.g. html, latex or linkcheck.

german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Making output directory...
	Running Sphinx v1.1.3
	loading pickled environment... not yet created
	building [html]: targets for 1 source files that are out of date
	updating environment: 1 added, 0 changed, 0 removed
	reading sources... [100%] index                                                                                                                
	looking for now-outdated files... none found
	pickling environment... done
	checking consistency... done
	preparing documents... done
	writing output... [100%] index                                                                                                                 
	writing additional files... genindex search
	copying static files... done
	dumping search index... done
	dumping object inventory... done
	build succeeded.

	Build finished. The HTML pages are in _build/html.

german@german-T400:~/Prog/WS/sphinx$ mkdir svn-files
german@german-T400:~/Prog/WS/sphinx$ cd svn-files/
german@german-T400:~/Prog/WS/sphinx/svn-files$ svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/trunk/sampledoc_tut
	A    sampledoc_tut/ipython_directive.rst
	A    sampledoc_tut/cheatsheet.rst
	A    sampledoc_tut/custom_look.rst
	A    sampledoc_tut/_static
	A    sampledoc_tut/_static/fancy_screenshot.png
	A    sampledoc_tut/_static/basic_screenshot.png
	A    sampledoc_tut/_static/logo.png
	A    sampledoc_tut/_static/default.css
	A    sampledoc_tut/extensions.rst
	A    sampledoc_tut/emacs_help.rst
	A    sampledoc_tut/pyplots
	A    sampledoc_tut/pyplots/ellipses.py
	A    sampledoc_tut/sphinxext
	A    sampledoc_tut/sphinxext/docscrape_sphinx.py
	A    sampledoc_tut/sphinxext/inheritance_diagram.py
	A    sampledoc_tut/sphinxext/numpydoc.py
	A    sampledoc_tut/sphinxext/ipython_console_highlighting.py
	A    sampledoc_tut/sphinxext/apigen.py
	A    sampledoc_tut/sphinxext/docscrape.py
	A    sampledoc_tut/conf.py
	A    sampledoc_tut/Makefile
	A    sampledoc_tut/_templates
	A    sampledoc_tut/_templates/layout.html
	A    sampledoc_tut/_build
	A    sampledoc_tut/getting_started.rst
	A    sampledoc_tut/index.rst
	Checked out revision 8989.

german@german-T400:~/Prog/WS/sphinx/svn-files$ cp sampledoc_tut/getting_started.rst ../
german@german-T400:~/Prog/WS/sphinx/svn-files$ cp sampledoc_tut/_static/basic_screenshot.png ../_static/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cd ..
german@german-T400:~/Prog/WS/sphinx$ nano index.rst 
german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Running Sphinx v1.1.3
	loading pickled environment... done
	building [html]: targets for 1 source files that are out of date
	updating environment: 8 added, 1 changed, 0 removed
	reading sources... [100%] svn-files/sampledoc_tut/ipython_directive                                                                            
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/custom_look.rst:6: WARNING: Duplicate explicit target name: "sphinx".

	....
	13 ERRORES
	....

	looking for now-outdated files... none found
	pickling environment... done
	checking consistency... /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/index.rst:: WARNING: document isn't included in any toctree
	done
	preparing documents... done
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst:80: WARNING: Pygments lexer name u'ipython' is not known                    
	writing output... [100%] svn-files/sampledoc_tut/ipython_directive                                                                             
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst:7: WARNING: undefined label: cheatsheet -literal (if the link has no caption the label must precede a section header)
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst:53: WARNING: undefined label: extensions-literal (if the link has no caption the label must precede a section header)
	writing additional files... genindex search
	copying images... [100%] svn-files/sampledoc_tut/_static/fancy_screenshot.png                                                                  
	copying static files... done
	dumping search index... done
	dumping object inventory... done
	build succeeded, 22 warnings.

	Build finished. The HTML pages are in _build/html.

german@german-T400:~/Prog/WS/sphinx$ cd svn-files/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cp sampledoc_tut/_static/default.css ../_static/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cp sampledoc_tut/_templates/layout.html ../_templates/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cp sampledoc_tut/_static/logo.png ../_static/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cd ..
german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Running Sphinx v1.1.3
	loading pickled environment... done
	building [html]: targets for 9 source files that are out of date
	updating environment: 0 added, 0 changed, 0 removed
	looking for now-outdated files... none found
	preparing documents... done
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst:80: WARNING: Pygments lexer name u'ipython' is not known                    
	writing output... [100%] svn-files/sampledoc_tut/ipython_directive                                                                             
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst:7: WARNING: undefined label: cheatsheet -literal (if the link has no caption the label must precede a section header)
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst:53: WARNING: undefined label: extensions-literal (if the link has no caption the label must precede a section header)
	writing additional files... genindex search
	copying images... [100%] svn-files/sampledoc_tut/_static/fancy_screenshot.png                                                                  
	copying static files... done
	dumping search index... done
	dumping object inventory... done
	build succeeded, 3 warnings.

	Build finished. The HTML pages are in _build/html.

german@german-T400:~/Prog/WS/sphinx$ nano _templates/layout.html 
german@german-T400:~/Prog/WS/sphinx$ mkdir sphinxext
german@german-T400:~/Prog/WS/sphinx$ cd svn-files/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cp sampledoc_tut/sphinxext/*.py ../sphinxext/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cd ..
german@german-T400:~/Prog/WS/sphinx$ nano conf.py 
german@german-T400:~/Prog/WS/sphinx$ nano conf.py 
german@german-T400:~/Prog/WS/sphinx$ nano conf.py 
german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Running Sphinx v1.1.3

	Extension error:
	Could not import extension matplotlib.sphinxext.ipython_directive (exception: No module named ipython_directive)
	make: *** [html] Error 1

german@german-T400:~/Prog/WS/sphinx$ nano conf.py 
german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Running Sphinx v1.1.3
	loading pickled environment... done
	building [html]: targets for 9 source files that are out of date
	updating environment: [extensions changed] 9 added, 0 changed, 0 removed
	reading sources... [ 66%] svn-files/sampledoc_tut/extensions                                                                                   
	Exception occurred:
	  File "/usr/lib/python2.7/dist-packages/docutils/parsers/rst/states.py", line 195, in run
		results = StateMachineWS.run(self, input_lines, input_offset)
	  File "/usr/lib/python2.7/dist-packages/docutils/statemachine.py", line 237, in run
		context, state, transitions)
	  File "/usr/lib/python2.7/dist-packages/docutils/statemachine.py", line 458, in check_line
		return method(match, context, next_state)
	  File "/usr/lib/python2.7/dist-packages/docutils/parsers/rst/states.py", line 2283, in explicit_markup
		nodelist, blank_finish = self.explicit_construct(match)
	  File "/usr/lib/python2.7/dist-packages/docutils/parsers/rst/states.py", line 2295, in explicit_construct
		return method(self, expmatch)
	  File "/usr/lib/python2.7/dist-packages/docutils/parsers/rst/states.py", line 2036, in directive
		directive_class, match, type_name, option_presets)
	  File "/usr/lib/python2.7/dist-packages/docutils/parsers/rst/states.py", line 2087, in run_directive
		result = directive_instance.run()
	  File "/usr/lib/python2.7/dist-packages/docutils/parsers/rst/__init__.py", line 382, in run
		self.state, self.state_machine)
	  File "/usr/lib/pymodules/python2.7/matplotlib/sphinxext/plot_directive.py", line 210, in plot_directive
		return run(arguments, content, options, state_machine, state, lineno)
	  File "/usr/lib/pymodules/python2.7/matplotlib/sphinxext/plot_directive.py", line 627, in run
		fd = open(source_file_name, 'r')
	IOError: [Errno 2] No such file or directory: u'/home/german/Prog/WS/sphinx/pyplots/ellipses.py'
	The full traceback has been saved in /tmp/sphinx-err-lzg9J7.log, if you want to report the issue to the developers.
	Please also report this if it was a user error, so that a better error message can be provided next time.
	Either send bugs to the mailing list at <http://groups.google.com/group/sphinx-dev/>,
	or report them in the tracker at <http://bitbucket.org/birkenfeld/sphinx/issues/>. Thanks!
	make: *** [html] Error 1

german@german-T400:~/Prog/WS/sphinx$ mkdir pyplots
german@german-T400:~/Prog/WS/sphinx$ cd svn-files/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cp sampledoc_tut/pyplots/ellipses.py ../pyplots/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cd ..
german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Running Sphinx v1.1.3
	loading pickled environment... done
	building [html]: targets for 9 source files that are out of date
	updating environment: [extensions changed] 9 added, 0 changed, 0 removed
	reading sources... [100%] svn-files/sampledoc_tut/ipython_directive                                                                            
	/home/german/Prog/WS/sphinx/getting_started.rst:11: WARNING: duplicate label installing-docdir, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst
	/home/german/Prog/WS/sphinx/getting_started.rst:6: WARNING: duplicate label getting_started, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst
	/home/german/Prog/WS/sphinx/getting_started.rst:47: WARNING: duplicate label fetching-the-data, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/custom_look.rst:6: WARNING: Duplicate explicit target name: "sphinx".
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst:11: WARNING: duplicate label installing-docdir, other instance in /home/german/Prog/WS/sphinx/getting_started.rst
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst:6: WARNING: duplicate label getting_started, other instance in /home/german/Prog/WS/sphinx/getting_started.rst
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst:47: WARNING: duplicate label fetching-the-data, other instance in /home/german/Prog/WS/sphinx/getting_started.rst
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:23: ERROR: Unknown directive type "ipython".

	.. ipython::

	   In [136]: x = 2

	   In [137]: x**3
	   Out[137]: 8
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:46: ERROR: Unknown directive type "ipython".

	.. ipython::

	  In [138]: z = x*3   # x is recalled from previous block

	  In [139]: z
	  Out[139]: 6

	  In [140]: print z
	  --------> print(z)
	  6

	  In [141]: q = z[)   # this is a syntax error -- we trap ipy exceptions
	  ------------------------------------------------------------
		 File "<ipython console>", line 1
		   q = z[)   # this is a syntax error -- we trap ipy exceptions
		         ^
	  SyntaxError: invalid syntax
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:74: ERROR: Unknown directive type "ipython".

	.. ipython::

	   In [1]: x = 'hello world'

	   # this will raise an error if the ipython output is different
	   @doctest
	   In [2]: x.upper()
	   Out[2]: 'HELLO WORLD'

	   # some readline features cannot be supported, so we allow
	   # "verbatim" blocks, which are dumped in verbatim except prompts
	   # are continuously numbered
	   @verbatim
	   In [3]: x.st<TAB>
	   x.startswith  x.strip
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:93: ERROR: Unknown directive type "ipython".

	.. ipython::

	   In [130]: url = 'http://ichart.finance.yahoo.com/table.csv?s=CROX\
		  .....: &d=9&e=22&f=2009&g=d&a=1&br=8&c=2006&ignore=.csv'

	   In [131]: print url.split('&')
	   --------> print(url.split('&'))
	   ['http://ichart.finance.yahoo.com/table.csv?s=CROX', 'd=9', 'e=22',
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:101: WARNING: Explicit markup ends without a blank line; unexpected unindent.
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:113: ERROR: Unknown directive type "ipython".

	.. ipython::

	   In [133]: import numpy.random

	   @suppress
	   In [134]: numpy.random.seed(2358)

	   @doctest
	   In [135]: np.random.rand(10,2)
	   Out[135]:
	   array([[ 0.64524308,  0.59943846],
		      [ 0.47102322,  0.8715456 ],
		      [ 0.29370834,  0.74776844],
		      [ 0.99539577,  0.1313423 ],
		      [ 0.16250302,  0.21103583],
		      [ 0.81626524,  0.1312433 ],
		      [ 0.67338089,  0.72302393],
		      [ 0.7566368 ,  0.07033696],
		      [ 0.22591016,  0.77731835],
		      [ 0.0072729 ,  0.34273127]])
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:137: ERROR: Unknown directive type "ipython".

	.. ipython::

	   In [106]: print x
	   --------> print(x)
	   jdh

	   In [109]: for i in range(10):
		  .....:     print i
		  .....:
		  .....:
	   0
	   1
	   2
	   3
	   4
	   5
	   6
	   7
	   8
	   9
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:175: ERROR: Unknown directive type "ipython".

	.. ipython::
	   :suppress:

	   In [144]: from pylab import *

	   In [145]: ion()
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:185: ERROR: Unknown directive type "ipython".

	.. ipython::
	   :verbatim:

	   In [9]: cd mpl/examples/
	   /home/jdhunter/mpl/examples

	   In [10]: pwd
	   Out[10]: '/home/jdhunter/mpl/examples'


	   In [14]: cd mpl/examples/<TAB>
	   mpl/examples/animation/        mpl/examples/misc/
	   mpl/examples/api/              mpl/examples/mplot3d/
	   mpl/examples/axes_grid/        mpl/examples/pylab_examples/
	   mpl/examples/event_handling/   mpl/examples/widgets

	   In [14]: cd mpl/examples/widgets/
	   /home/jdhunter/mpl/examples/widgets

	   In [15]: !wc *
		   2    12    77 README.txt
		  40    97   884 buttons.py
		  26    90   712 check_buttons.py
		  19    52   416 cursor.py
		 180   404  4882 menu.py
		  16    45   337 multicursor.py
		  36   106   916 radio_buttons.py
		  48   226  2082 rectangle_selector.py
		  43   118  1063 slider_demo.py
		  40   124  1088 span_selector.py
		 450  1274 12457 total
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:222: ERROR: Unknown directive type "ipython".

	.. ipython::

	   @savefig plot_simple.png width=4in
	   In [151]: plot([1,2,3]);

	   # use a semicolon to suppress the output
	   @savefig hist_simple.png width=4in
	   In [151]: hist(np.random.randn(10000), 100);
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst:234: ERROR: Unknown directive type "ipython".

	.. ipython::


	   In [151]: ylabel('number')

	   In [152]: title('normal distribution')

	   @savefig hist_with_text.png width=4in
	   In [153]: grid(True)
	looking for now-outdated files... none found
	pickling environment... done
	checking consistency... /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/index.rst:: WARNING: document isn't included in any toctree
	done
	preparing documents... done
	writing output... [100%] svn-files/sampledoc_tut/ipython_directive                                                                             
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst:7: WARNING: undefined label: cheatsheet -literal (if the link has no caption the label must precede a section header)
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst:53: WARNING: undefined label: extensions-literal (if the link has no caption the label must precede a section header)
	writing additional files... genindex search
	copying images... [100%] svn-files/sampledoc_tut/_static/basic_screenshot.png                                                                  
	copying static files... done
	dumping search index... done
	dumping object inventory... done
	build succeeded, 21 warnings.

	Build finished. The HTML pages are in _build/html.

german@german-T400:~/Prog/WS/sphinx$ cd svn-files/
german@german-T400:~/Prog/WS/sphinx/svn-files$ cp sampledoc_tut/extensions.rst ../
german@german-T400:~/Prog/WS/sphinx/svn-files$ cd ..
german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Running Sphinx v1.1.3
	loading pickled environment... done
	building [html]: targets for 0 source files that are out of date
	updating environment: 1 added, 0 changed, 0 removed
	reading sources... [100%] extensions                                                                                                           
	/home/german/Prog/WS/sphinx/extensions.rst:96: WARNING: duplicate label using-math, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst
	/home/german/Prog/WS/sphinx/extensions.rst:60: WARNING: duplicate label ipython-highlighting, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst
	/home/german/Prog/WS/sphinx/extensions.rst:145: WARNING: duplicate label pyplots, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst
	/home/german/Prog/WS/sphinx/extensions.rst:5: WARNING: duplicate label extensions, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/extensions.rst
	looking for now-outdated files... none found
	pickling environment... done
	checking consistency... /home/german/Prog/WS/sphinx/extensions.rst:: WARNING: document isn't included in any toctree
	/home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/index.rst:: WARNING: document isn't included in any toctree
	done
	preparing documents... done
	writing output... [100%] index                                                                                                                 
	/home/german/Prog/WS/sphinx/extensions.rst:53: WARNING: undefined label: extensions-literal (if the link has no caption the label must precede a section header)
	writing additional files... genindex search
	copying images... [100%] _build/plot_directive/extensions-1.png                                                                                
	copying static files... done
	dumping search index... done
	dumping object inventory... done
	build succeeded, 7 warnings.

	Build finished. The HTML pages are in _build/html.

german@german-T400:~/Prog/WS/sphinx$ cp svn-files/sampledoc_tut/index.rst ./
german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Running Sphinx v1.1.3
	loading pickled environment... done
	building [html]: targets for 1 source files that are out of date
	updating environment: 0 added, 1 changed, 0 removed
	reading sources... [100%] index                                                                                                                
	/home/german/Prog/WS/sphinx/index.rst:21: WARNING: toctree contains reference to nonexisting document u'custom_look'
	/home/german/Prog/WS/sphinx/index.rst:21: WARNING: toctree contains reference to nonexisting document u'ipython_directive'
	/home/german/Prog/WS/sphinx/index.rst:21: WARNING: toctree contains reference to nonexisting document u'cheatsheet'
	/home/german/Prog/WS/sphinx/index.rst:21: WARNING: toctree contains reference to nonexisting document u'emacs_help'
	looking for now-outdated files... none found
	pickling environment... done
	checking consistency... /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/index.rst:: WARNING: document isn't included in any toctree
	done
	preparing documents... done
	writing output... [100%] index                                                                                                                 
	writing additional files... genindex search
	copying static files... done
	dumping search index... done
	dumping object inventory... done
	build succeeded, 5 warnings.

Build finished. The HTML pages are in _build/html.

german@german-T400:~/Prog/WS/sphinx$ cp svn-files/sampledoc_tut/*.rst ./
german@german-T400:~/Prog/WS/sphinx$ make html
	sphinx-build -b html -d _build/doctrees   . _build/html
	Running Sphinx v1.1.3
	loading pickled environment... done
	building [html]: targets for 3 source files that are out of date
	updating environment: 4 added, 3 changed, 0 removed
	reading sources... [100%] ipython_directive                                                                                                    
	/home/german/Prog/WS/sphinx/cheatsheet.rst:63: WARNING: duplicate label making-a-table, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst
	/home/german/Prog/WS/sphinx/cheatsheet.rst:5: WARNING: duplicate label cheat-sheet, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst
	/home/german/Prog/WS/sphinx/cheatsheet.rst:16: WARNING: duplicate label formatting-text, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst
	/home/german/Prog/WS/sphinx/cheatsheet.rst:96: WARNING: duplicate label cheatsheet-literal, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst
	/home/german/Prog/WS/sphinx/cheatsheet.rst:32: WARNING: duplicate label making-a-list, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst
	/home/german/Prog/WS/sphinx/cheatsheet.rst:78: WARNING: duplicate label making-links, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/cheatsheet.rst
	/home/german/Prog/WS/sphinx/custom_look.rst:6: WARNING: Duplicate explicit target name: "sphinx".
	/home/german/Prog/WS/sphinx/custom_look.rst:62: WARNING: image file not readable: _static/fancy_screenshot.png
	/home/german/Prog/WS/sphinx/custom_look.rst:6: WARNING: duplicate label custom_look, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/custom_look.rst
	/home/german/Prog/WS/sphinx/emacs_help.rst:5: WARNING: duplicate label working-with-emacs, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/emacs_help.rst
	/home/german/Prog/WS/sphinx/getting_started.rst:11: WARNING: duplicate label installing-docdir, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst
	/home/german/Prog/WS/sphinx/getting_started.rst:6: WARNING: duplicate label getting_started, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst
	/home/german/Prog/WS/sphinx/getting_started.rst:47: WARNING: duplicate label fetching-the-data, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/getting_started.rst
	/home/german/Prog/WS/sphinx/ipython_directive.rst:23: ERROR: Unknown directive type "ipython".

	.. ipython::

	   In [136]: x = 2

	   In [137]: x**3
	   Out[137]: 8

	...
	...
	...
	
	/home/german/Prog/WS/sphinx/ipython_directive.rst:5: WARNING: duplicate label ipython_directive, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst
	/home/german/Prog/WS/sphinx/ipython_directive.rst:286: WARNING: duplicate label ipython_literal, other instance in /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/ipython_directive.rst
	looking for now-outdated files... none found
	pickling environment... done
	checking consistency... /home/german/Prog/WS/sphinx/svn-files/sampledoc_tut/index.rst:: WARNING: document isn't included in any toctree
	done
	preparing documents... done
	writing output... [100%] ipython_directive                                                                                                     
	/home/german/Prog/WS/sphinx/cheatsheet.rst:7: WARNING: undefined label: cheatsheet -literal (if the link has no caption the label must precede a section header)
	/home/german/Prog/WS/sphinx/extensions.rst:53: WARNING: undefined label: extensions-literal (if the link has no caption the label must precede a section header)
	writing additional files... genindex search
	copying images... [100%] _build/plot_directive/extensions-1.png                                                                                
	copying static files... done
	dumping search index... done
	dumping object inventory... done
	build succeeded, 29 warnings.

	Build finished. The HTML pages are in _build/html.

